--- /dev/null
+siridb-server (2.0.30-alpha2) unstable; urgency=medium
+
+ * Test
+
+ -- Jeroen van der Heijden <jeroen@transceptor.technology> Fri, 12 Oct 2018 16:05:40 +0200
+
+siridb-server (2.0.29-1) unstable; urgency=medium
+
+ * New upstream release
+
+ -- Paul Gevers <elbrus@debian.org> Wed, 25 Jul 2018 21:57:12 +0200
+
+siridb-server (2.0.28-1) unstable; urgency=medium
+
+ * New upstream release
+
+ -- Paul Gevers <elbrus@debian.org> Mon, 02 Jul 2018 14:00:34 +0200
+
+siridb-server (2.0.27-1) unstable; urgency=medium
+
+ * New upstream release
+ * Update Maintainer and Vcs fields (Closes: #890700)
+
+ -- Paul Gevers <elbrus@debian.org> Mon, 28 May 2018 10:22:52 +0200
+
+siridb-server (2.0.26-1) unstable; urgency=medium
+
+ * New upstream release
+ * Drop all patches
+ * Add man page
+
+ -- Paul Gevers <elbrus@debian.org> Sat, 06 Jan 2018 07:54:21 +0100
+
+siridb-server (2.0.25-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #882678)
+
+ -- Paul Gevers <elbrus@debian.org> Mon, 04 Dec 2017 21:40:02 +0100
--- /dev/null
+Release/siridb-server.1
--- /dev/null
+Source: siridb-server
+Section: database
+Priority: optional
+Maintainer: SiriDB Maintainers <team+debian-siridb-packaging-team@tracker.debian.org>
+Uploaders:
+ Jeroen van der Heijden <jeroen@transceptor.technology>,
+ Paul Gevers <elbrus@debian.org>,
+Rules-Requires-Root: no
+Build-Depends:
+ debhelper (>= 11~),
+ help2man,
+ libcleri-dev,
+ libpcre2-dev,
+ libuv1-dev,
+ uuid-dev,
+Homepage: https://siridb.net/
+Vcs-Browser: https://salsa.debian.org/siridb-team/siridb-server
+Vcs-Git: https://salsa.debian.org/siridb-team/siridb-server.git
+Standards-Version: 4.1.3
+
+Package: siridb-server
+Architecture: any
+Depends:
+ ucf,
+ ${misc:Depends},
+ ${shlibs:Depends},
+Description: SiriDB time series database server
+ SiriDB is a scalable, robust and fast time series database. Build from the
+ ground up SiriDB uses a mechanism to operate without a global index and allows
+ server resources to be added on the fly. SiriDB's query language includes
+ dynamic grouping of time series for easy analysis over large amounts of time
+ series.
--- /dev/null
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files: *
+Copyright: 2016-2018, Transceptor Technology <info@transceptor.technology>
+License: Expat
+
+Files: debian/*
+Copyright: 2017-2018 Paul Gevers <elbrus@debian.org>
+License: Expat
+
+License: Expat
+ The MIT License
+ .
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated
+ documentation files (the "Software"), to deal in the Software
+ without restriction, including without limitation the rights to
+ use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to
+ whom the Software is furnished to do so, subject to the
+ following conditions:
+ .
+ The above copyright notice and this permission notice shall
+ be included in all copies or substantial portions of the
+ Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
+ WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
--- /dev/null
+etc/siridb
+var/lib/siridb
--- /dev/null
+README.md
+archive/*
+docs/*
--- /dev/null
+Release/siridb-server usr/lib/siridb-server
+help usr/share/siridb-server
+siridb.conf usr/share/siridb-server/conf_templates
--- /dev/null
+usr/lib/siridb-server/siridb-server usr/bin/siridb-server
+usr/share/siridb-server/help usr/lib/siridb-server/help
+usr/share/siridb-server/help usr/share/doc/siridb-server/help
--- /dev/null
+Release/siridb-server.1
--- /dev/null
+#!/bin/sh
+set -e
+
+ucf --debconf-ok /usr/share/siridb-server/conf_templates/siridb.conf /etc/siridb/siridb.conf
+ucfr siridb-server /etc/siridb/siridb.conf
+
+#DEBHELPER#
+exit 0
--- /dev/null
+#!/bin/sh
+set -e
+
+config_file=/etc/siridb/siridb.conf
+
+case "$1" in
+ purge)
+ [ -d "/var/lib/siridb" ] && rm -rf /var/lib/siridb
+ if which ucf >/dev/null 2>&1; then
+ ucf --purge $config_file
+ fi
+ if [ -x "`which ucfr 2>/dev/null`" ]; then
+ ucfr --purge siridb-server $config_file
+ fi
+ for ext in .ucf-new .ucf-old .ucf-dist ""; do
+ rm -f "$config_file$ext"
+ done
+ ;;
+ remove)
+ ;;
+esac
+
+#DEBHELPER#
+exit 0
--- /dev/null
+#!/usr/bin/make -f
+
+export DEB_BUILD_MAINT_OPTIONS=hardening=+all
+
+%:
+ dh $@
+
+override_dh_auto_build-arch:
+ $(MAKE) --directory=Release
+ help2man -N -n"time series database server" Release/siridb-server > Release/siridb-server.1
+
+override_dh_auto_clean:
+ $(MAKE) --directory=Release clean
+ dh_auto_clean
--- /dev/null
+[Unit]
+Description=SiriDB Server
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/siridb-server --config /etc/siridb/siridb.conf --log-level warning
+StandardOutput=journal
+LimitNOFILE=65535
+TimeoutStartSec=10
+TimeoutStopSec=300
+
+[Install]
+WantedBy=multi-user.target
--- /dev/null
+3.0 (quilt)
--- /dev/null
+Test-Command: make --directory=Release test
+Features: test-name=siridb-unit-tests
+Depends: @, @builddeps@
--- /dev/null
+version=4
+opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%siridb-server-$1.tar.gz%" \
+ https://github.com/transceptor-technology/siridb-server/releases \
+ (?:.*?/)?v?(\d[\d.]*)\.tar\.gz